home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / biblio / bibtex / utils / bibclean / xctype.h < prev    next >
C/C++ Source or Header  |  1992-10-06  |  1KB  |  46 lines

  1. /* -*-C-*- ctype.h */
  2. /**********************************************************************/
  3. /******************************* ctype ********************************/
  4. /**********************************************************************/
  5.  
  6. /* $Id: xctype.h,v 1.4 1992/10/08 01:42:01 beebe Exp beebe $
  7.  * $Log: xctype.h,v $
  8.  * Revision 1.4  1992/10/08  01:42:01  beebe
  9.  * Update for C++.
  10.  *
  11.  * Revision 1.3  1992/03/06  14:58:06  beebe
  12.  * Complete two-month long development of version 3.0.114.  See
  13.  * 00revhst.txt for details.
  14.  *
  15.  * Revision 1.2  1992/02/29  19:42:20  beebe
  16.  * Update for version 3.0.114 [29-Feb-1992] following two-month
  17.  * major overhaul and compilation testing on numerous machines.
  18.  *
  19.  * Revision 1.2  1992/02/29  19:42:20  beebe
  20.  * Update for version 3.0.114 [29-Feb-1992] following two-month
  21.  * major overhaul and compilation testing on numerous machines.
  22.  *
  23.  */
  24.  
  25. #ifndef XCTYPE_H_DEFINED_
  26. #define XCTYPE_H_DEFINED_
  27.  
  28. #include <ctype.h>
  29.  
  30. #if !__cplusplus
  31. #if sun
  32. /* Some systems (e.g. SunOS 4.1) fail to declare Standard C functions in
  33. ctype.h */
  34.  
  35. #ifndef toupper
  36. int        toupper ARGS((int c_));
  37. #endif /* toupper */
  38.  
  39. #ifndef tolower
  40. int        tolower ARGS((int c_));
  41. #endif /* tolower */
  42. #endif /* sun */
  43. #endif /* !__cplusplus */
  44.  
  45. #endif /* XCTYPE_H_DEFINED_ */
  46.